home *** CD-ROM | disk | FTP | other *** search
- /*--------------------------------------------------------------
- * File: GSCREEN.H
- * Description: Screen attribute definitions to simplify
- * color interface for MPLUS library.
- *
- * Developed for the MPLUS Graphic Interface Library
- * Copyright (c) 1989 by Michael Yam
- *-------------------------------------------------------------*/
-
- /*---------------------------------------------------------*
- * The following are for EGA, VGA graphics modes *
- *---------------------------------------------------------*/
- #define BLACK 0x00
- #define BLUE 0x01
- #define GREEN 0x02
- #define CYAN 0x03
- #define RED 0x04
- #define MAGENTA 0x05
- #define BROWN 0x06
- #define WHITE 0x07
-
- #define GREY 0x08 /* for the British in you */
- #define GRAY 0x08
- #define LIGHTBLUE 0x09
- #define LIGHTGREEN 0x0A
- #define LIGHTCYAN 0x0B
- #define LIGHTRED 0x0C
- #define LIGHTMAGENTA 0x0D
- #define LIGHTYELLOW 0x0E
- #define YELLOW LIGHTYELLOW /* just keeping up with MSC 6.0 conventions */
- #define BRIGHTWHITE 0x0F
-
- /*-------------------------------------------------------------*
- * End of GSCREEN.H *
- *-------------------------------------------------------------*/
-
-